-
Notifications
You must be signed in to change notification settings - Fork 455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support extending McpServer with authorization #249
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
Comments suppressed due to low confidence (1)
src/server/mcp.ts:770
- [nitpick] If promptArgumentsFromSchema is intended only as an internal helper, consider not exporting it or renaming it (e.g. prefixing with an underscore) to reduce confusion regarding its public API status.
export function promptArgumentsFromSchema(
Hi @wangshijun. Looks good. Can you add some unit tests? |
Thanks for the review! I've gone ahead and added a simple Oh, and just a heads-up—I took the liberty of doing a bit of housekeeping on the codebase:
Hope these changes help! Let me know if there's anything else you'd like me to tweak. 😊 A screenshot for the current overall coverage of the codebase ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Build, lint, tests, and coverage run locally.
Let's make some of the private members of McpServer accessible to its subclasses. This way, the community can easily build additional layers on top of the official version without needing to start from scratch.
Motivation and Context
We wanted to share some thoughts about the built-in McpServer. It's got some really handy methods like
tool
,prompt
, andresource
that make setting up an MCP server a breeze. However, it doesn't currently allow for any extensions, which makes it a bit tricky for us to implement server-side authorization for each tool call based on the current user session. We also feel that creating a whole new MCP server framework isn't the best route, especially since the official one works well in most scenarios.With that in mind, we're suggesting a couple of changes:
user
property to theTransport
and ensure it's accessible in theextra
parameter during tool calls.We did a bit of digging and found a potentially related issue here: #171
We'd love to hear your thoughts on this!
How Has This Been Tested?
Yes, we have tested this in: https://github.com/blocklet/mcp-server-demo
Breaking Changes
No, there are no any breaking changes to existing features.
Types of changes
Checklist
Additional context
Example McpServer extension (with flexible access control policy):
And usage example for above usage: